home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / windows / wdj1096.zip / ZOLMAN.ZIP / DRAW.ZIP / PARKWND.H < prev    next >
C/C++ Source or Header  |  1996-05-22  |  754b  |  39 lines

  1. // ParkWnd.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CMyParkingWnd window
  6.  
  7. class CMyParkingWnd : public CWnd
  8. {
  9. // Construction
  10. public:
  11.     CMyParkingWnd();
  12.  
  13. // Attributes
  14. public:
  15.   CWnd*   pwndChild1;
  16.   CWnd*   pwndChild2;
  17.  
  18. // Operations
  19. public:
  20.  
  21. // Overrides
  22.     // ClassWizard generated virtual function overrides
  23.     //{{AFX_VIRTUAL(CMyParkingWnd)
  24.     //}}AFX_VIRTUAL
  25.  
  26. // Implementation
  27. public:
  28.     virtual ~CMyParkingWnd();
  29.  
  30.     // Generated message map functions
  31. protected:
  32.     //{{AFX_MSG(CMyParkingWnd)
  33.     afx_msg void OnSize(UINT nType, int cx, int cy);
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39.